home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Programmer Disk
/
The Programmer Disk (Microforum).iso
/
xpro
/
tutor
/
pro30
/
ch02_2a.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-04
|
284b
|
18 lines
(* Chapter 2 - Programming exercise 2 *)
program My_Name_Again;
begin
Write('John Q. Doe ');
Write('1234 Main Street ');
Writeln('Littleberg, USA');
end.
{ Result of execution
John Q. Doe 1234 Main Street Littleberg, USA
}